-- set up global variables for standard proportional and monospaced fonts
if the machineType = 256 then
-- we're running in windows!
put "arial" into gPropFont
put "courier new" into gMonoFont
else
put "helvetica" into gPropFont
put "courier" into gMonoFont
end if
if isXtraInstalled("printomatic") then
set gCanPrint = true
else
set gCanPrint = false
alert "The PrintOMatic Xtra is not installed; printing is disabled."&return&return&"Please consult the Read Me file in the PrintOMatic folder for information on how to install PrintOMatic."
end if
end
on isXtraInstalled xtraName
if not stringP(xtraName) then
alert "isXtraInstalled() requires an Xtra name to work".